home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-04-16 | 504 b | 32 lines | [TEXT/CWIE] |
- //// IASort.h
- // Copyright: © 1994 - 1998 by Apple Computer, Inc., all rights reserved.
-
-
- /// just like qsort(), only faster.
-
- #pragma once
- #ifndef IASort_h
- #define IASort_h
-
- #pragma import on
-
- #if PRAGMA_STRUCT_ALIGN
- #pragma options align=power
- #endif
-
- #include "IACommon.h"
-
- #pragma IA_BEGIN_EXPORTS
-
- void IASort(void *A, size_t n, size_t size, int (*cmp)(const void *, const void *));
-
- #pragma IA_END_EXPORTS
-
- #if PRAGMA_STRUCT_ALIGN
- #pragma options align=reset
- #endif
-
- #pragma import reset
-
- #endif
-